blob: baac96ad78f14f5e15de79f46694f31ee6a2b166 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// app/projects/[projectId]/files/page.tsx
import { FileManager } from '@/components/file-manager/FileManager';
export default async function ProjectFilesPage({
params,
}: {
params: { projectId: string };
}) {
const projectId = await params.projectId
return (
<div className="h-full flex flex-col">
<FileManager projectId={projectId} />
</div>
);
}
|